home *** CD-ROM | disk | FTP | other *** search
/ CICA 1993 April / CICA MS Windows - April 1993.iso / unzipped / util / winwait / readme.txt next >
Text File  |  1992-07-29  |  1KB  |  38 lines

  1. This is a simple little program I wrote so that I didn't have to load windows
  2. every time I boot.  Usually, I go straight to Windows, but when you are trying
  3. some new AUTOEXEC.BAT or CONFIG.SYS tricks, booting into Windows only to exit
  4. again is stupid and a waste of time (especially on my 8 MHz 80286).  Therefore,
  5. I wrote WINWAIT.PAS. . .
  6.  
  7. I know its no gigantic work of artful code, but it gets the job done.  To
  8. implement it, use it in a batch file.  It returns a DOS errorlevel 0 if you
  9. select Windows, errorlevel 1 if you select DOS.  You might alter your
  10. AUTOEXEC.BAT as follows:
  11.  
  12.     winwait
  13.     if errorlevel 1 goto :end
  14.     win
  15.     :end
  16.     rem Add any final things here that you'd like to do before DOS, or just
  17.     rem call it quits at ":end" (you may omit the "rem" lines!)
  18.  
  19. I know there are similar--maybe even more sophisticated--programs out there,
  20. but I am too lazy to go searching over countless networks looking for them.
  21.  
  22. So here you go.  {Legal stuff:}  I will assume no responsibility for your use
  23. or misuse of this program, nor will I retype your 100 page thesis, or re-key
  24. your 32000 entry database;  face it--this program isn't that sophisticated (if
  25. you don't believe me, read the source code).  I hereby release this software
  26. into the public domain.
  27.  
  28. I don't ask for any payments, but if you really feel like donating to my cause,
  29. I can be bribed at:
  30.  
  31. PO Box 462
  32. Potsdam, New York 13676
  33.  
  34. Peter M. Deuel
  35. (Pete)
  36. deuelpm@craft.camp.clarkson.edu
  37.  
  38.